home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-12-24 | 1.0 KB | 48 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Scrolling Demo.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void SetUpTiling( void ) ;
- void CreateBallSprite( void );
- void CreateDiamondMeterSprite( void );
- void SetUpAnimation( void );
-
- void RunAnimation( void );
- void ProcessRect( void );
-
- SW_FUNC void EraseRectOffscreen( SpriteWorldPtr spriteWorldP );
- SW_FUNC void DrawRectOffscreen( SpriteWorldPtr spriteWorldP );
-
- void ShutDown( void );
- SW_FUNC void TileChangeProc(SpriteWorldPtr spriteWorldP);
-
- SW_FUNC void KeySpriteMoveProc(SpritePtr srcSpriteP);
- SW_FUNC void DiamondMeterSpriteMoveProc(SpritePtr srcSpriteP);
- SW_FUNC void UpdateDiamondMeter( void );
-
- SW_FUNC void SmoothScrollingWorldMoveProc(
- SpriteWorldPtr spriteWorldP,
- SpritePtr followSpriteP);
-
- void UpdateKeys( void );
-
-
- #ifdef __cplusplus
- }
- #endif
-